home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / graphics / pstex / makefile.bsd < prev    next >
Makefile  |  1992-01-27  |  703b  |  41 lines

  1. #
  2. # Rules for pstex:
  3. #
  4. # Neil Hunt
  5. #
  6. # $Log:    Makefile,v $
  7. # Revision 1.5  89/02/10  18:38:26  neil
  8. # Complete cleanup of pstex.
  9. # New files and headers.
  10. # Revision 1.4  89/01/09  13:04:29  hunt
  11. # General updates.
  12. # Revision 1.3  88/09/20  13:13:21  hunt
  13. # Added rules for pstex.
  14. # Revision 1.2  88/08/04  13:00:07  hunt
  15. # Put back the missing quotes !
  16. # Revision 1.1  88/08/04  12:27:10  hunt
  17. # Initial revision
  18. #
  19.  
  20. CFLAG    = -O
  21.  
  22. OBJ    = pstex.o args.o fopenp.o
  23.  
  24. pstex: $(OBJ)
  25.     cc $(CFLAG) -o $@ $(OBJ)
  26.  
  27. clean:
  28.     /bin/rm -f $(OBJ)
  29. veryclean:
  30.     /bin/rm -f pstex
  31.     make clean
  32.  
  33. pstex.o: pstex.c std.h args.h
  34. args.o: args.c std.h args.h
  35. fopenp.o: fopenp.c std.h
  36.  
  37.